👀 Reading hidden code
begin
using Plots
plotly()
end
Failed to load integration with PlotlyBase & PlotlyKaleido.
The package PlotlyBase.jl could not load because it failed to initialize.
That's not nice! Things you could try:
- Restart the notebook.
- Try a different Julia version.
- Contact the developers of PlotlyBase.jl about this error.
You might find useful information in the package installation log:
this suckz 💣
:a
1
2
3
4
5
6
7
8
9
10
👀 Reading hidden code
let
plotlylower(d::Dict) = Dict(
)
end
begin
@eval Plots begin
plotlylower(x) = x
plotlylower(x::Vector{<:Number}) = x
plotlylower(x::AbstractVector) = Any[plotlylower(z) for z in x]
plotlylower(d::Dict) = Dict(
k => plotlylower(v)
for (k,v) in d
)
function _show(io::IO, ::MIME"text/html", plt::Plot{PlotlyBackend})
write(io, html_head(plt))
write(io, """
<div>
<script id=asdf>
const PLOT = this ?? document.createElement("div"); // currentScript.parentElement.firstElementChild;
(this == null ? Plotly.newPlot : Plotly.react)(PLOT, $(Main.PlutoRunner.publish_to_js(plotlylower(plotly_series(plt)))), $(plotly_layout_json(plt)));
return PLOT
</script>
</div>
""")
end
plotly_series_json(plt::Plot) = Main.PlutoRunner.publish_to_js(
plotly_series(plt) |> plotlylower
)
end
plotly()
end
👀 Reading hidden code
using PlutoUI
👀 Reading hidden code
0.376774
0.395171
0.542742
0.107882
0.0792593
0.534385
0.587611
0.255684
0.484484
0.188579
0.411703
0.317175
0.916328
0.0378977
0.104541
0.258531
0.36599
0.85525
0.274903
0.0440306
x1 = rand(20)
👀 Reading hidden code
0.256583
0.980046
0.681097
0.734634
0.315873
0.238456
0.595865
0.0811737
0.432785
0.896101
0.97764
0.540324
0.254446
0.660177
0.880005
0.973211
0.691194
0.431542
0.413446
0.497595
x2 = rand(20)
👀 Reading hidden code
p1 = plot(1:20, [x1 x2 rand(20)])
👀 Reading hidden code
Deprecated, use `AbstractPlutoDingetjes.Display.published_to_js(x)` instead of `PlutoRunner.publish_to_js(x)`.
plotly()
👀 Reading hidden code
0.860936
0.541386
0.201337
0.961275
0.277913
0.751434
0.918958
0.938254
0.233025
0.812753
0.881657
0.788762
0.438234
0.643589
0.620587
0.354358
0.879768
0.530856
0.209327
0.332235
0.555463
0.438794
0.48817
0.840102
0.683075
0.401592
0.742732
0.436472
0.976291
0.179561
xs = rand(50000)
👀 Reading hidden code
let
p = plot(; ylim=(0,1))
plot!(xsy2)
plot!([xs[1:x] d])
end
👀 Reading hidden code
Deprecated, use `AbstractPlutoDingetjes.Display.published_to_js(x)` instead of `PlutoRunner.publish_to_js(x)`.
0.860936
0.541386
0.201337
0.961275
0.277913
0.751434
0.918958
0.938254
0.233025
0.812753
0.881657
0.788762
0.438234
0.643589
0.620587
0.354358
0.879768
0.530856
0.209327
0.332235
0.555463
0.438794
0.48817
0.840102
0.683075
0.401592
0.742732
0.436472
0.976291
0.179561
xsy2 = xs .+ y2
👀 Reading hidden code
0.860936
d = y .+ xs[1:x]
👀 Reading hidden code
@bind y Slider(0:.01:1)
👀 Reading hidden code
@bind y2 Slider(0:.01:1)
👀 Reading hidden code
@bind x Slider(1:length(xs))
👀 Reading hidden code
methods (generic function with 6 methods)
methods
👀 Reading hidden code
p2 = plot(1:20, [x1 x2 rand(20)])
👀 Reading hidden code
Deprecated, use `AbstractPlutoDingetjes.Display.published_to_js(x)` instead of `PlutoRunner.publish_to_js(x)`.